[SYSTEMDS-3917] New Built-in SELU activiation function#2328
Closed
e-strauss wants to merge 1 commit into
Closed
Conversation
…nit (SELU) activation function to SystemDS as a built-in operation. The implementation follows the formulation proposed in Self-Normalizing Neural Networks (https://arxiv.org/abs/1706.02515).
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2328 +/- ##
============================================
- Coverage 72.26% 72.26% -0.01%
+ Complexity 46650 46649 -1
============================================
Files 1496 1496
Lines 176874 176874
Branches 34771 34771
============================================
- Hits 127820 127819 -1
+ Misses 39409 39404 -5
- Partials 9645 9651 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
LGTM - Thanks for the patch @e-strauss. The function looks great and thanks for adding related tests as well. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This patch introduces the Scaled Exponential Linear Unit (SELU) activation function to SystemDS as a built-in operation. The implementation follows the formulation proposed in Self-Normalizing Neural Networks (https://arxiv.org/abs/1706.02515).